* {
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 60px;
}

.backBtn {
  background: linear-gradient(90deg, rgba(37, 165, 38, 1) 0%, rgba(25, 180, 57, 1) 34%, rgba(23, 182, 60, 1) 38%, rgba(20, 186, 65, 1) 47%, rgba(0, 209, 96, 1) 100%);
  border-color: linear-gradient(90deg, rgba(37, 165, 38, 1) 0%, rgba(25, 180, 57, 1) 34%, rgba(23, 182, 60, 1) 38%, rgba(20, 186, 65, 1) 47%, rgba(0, 209, 96, 1) 100%);
  color: #fff;
  width: 85px;
  height: 40px;
  border-radius: 5px;
  line-height: 40px;
  text-align: center;
}

.backBtn:hover {
  cursor: pointer;
}

.infoTitleItem {
  font-weight: bold;
  font-size: 16px;
  margin-left: 15px;
  height: 100%;
  flex: none
}

.infoDescItem {
  color: #555;
  font-size: 14px;
  margin-right: 15px;
  margin-left: 15px
}

.submitBtnNormal {
  background: linear-gradient(90deg, rgba(37, 165, 38, 1) 0%, rgba(25, 180, 57, 1) 34%, rgba(23, 182, 60, 1) 38%, rgba(20, 186, 65, 1) 47%, rgba(0, 209, 96, 1) 100%);
  border-color: linear-gradient(90deg, rgba(37, 165, 38, 1) 0%, rgba(25, 180, 57, 1) 34%, rgba(23, 182, 60, 1) 38%, rgba(20, 186, 65, 1) 47%, rgba(0, 209, 96, 1) 100%);
  color: #fff;
  width: 120px;
  height: 40px;
  border-radius: 6px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}


.cancelBtnNormal {
  border: 1px solid green;
  background: #fff;
  color: green;
  width: 120px;
  height: 40px;
  border-radius: 6px;
  margin-left: 20px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.el-message {
  z-index: 99999999 !important;
}

.el-notification {
  z-index: 99999999 !important;
}

.item-a {
  text-decoration: none;
  color: #333;
  /* 设置链接颜色 */
  transition: color 0.3s;
  /* 添加颜色过渡效果 */
}

.item-a:hover {
  color: #00f;
  /* 鼠标悬浮时的颜色 */
  text-decoration: none;
  /* 鼠标悬浮时显示下划线 */
}

.nav-a {
  align-items: center;
  text-decoration: none;
  color: #666;
  /* 设置链接颜色 */
  transition: color 0.3s;
  /* 添加颜色过渡效果 */
  width: 100%;
  /* 让 .item-a 宽度占满父容器 */
}

.nav-a:hover {
  color: #00f;
  /* 鼠标悬浮时的颜色 */
  text-decoration: underline;
  /* 鼠标悬浮时显示下划线 */
}